home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / math / isnan.c < prev    next >
Encoding:
Text File  |  1995-09-11  |  129 b   |  6 lines

  1. int isnan(double a)
  2.   unsigned long *b=(unsigned long *)&a;
  3.   return (b[0]&0x7ff00000)==0x7ff00000&&((b[0]&0xfffff)||b[1]);
  4. }
  5.